class demo { public static void main(String args[]) { try { try { System.out.println(5/0); } catch(ArithmeticException err) { System.out.print("Arithmetic Exception"); } } catch(ArrayIndexOutOfBoundsException err) { System.out.print("ArrayIndexOutOfBoundsException"); } } }
Arithmetic Exception
class demo { public static void main(String args[]) { try { try { int arr[]={2,5,6,1,0}; System.out.println(arr[10]); } catch(ArithmeticException err) { System.out.print("Arithmetic Exception"); } } catch(ArrayIndexOutOfBoundsException err) { System.out.print("ArrayIndexOutOfBounds Exception"); } } }
ArrayIndexOutOfBounds Exception